body {
	font-family: 'Raleway', sans-serif;
}
a,a:hover,a:focus,a:active {
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	outline: none;
}
.wrapper {
	max-width: 1920px;
	margin:0 auto;
}
header.header {
	background: #000000;
	padding: 10px 40px 10px 25px;
}
header a {
	color: #fff;
}
header a:hover {
	color: #00afec;
}
header .logo {
	display: inline-block;
}
header .logo img {
	max-height: 80px;
}
header .topHeader {
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header .topHeader img {
	max-height: 40px;
}
header .topHeader .inputBox {
	display: flex;
	align-items: center;
}
header .topHeader .inputBox .form-control-box {
	border-radius: 20px;
	background: #4e66ad;
	color: #fff;
	padding: 5px 12px;
	min-width: 200px;
	text-align: center;
	margin-right: 20px;
	display: flex;
    align-items: center;
}
header .topHeader .inputBox label {
	color: #fff;
	margin-right: 5px;
	margin-bottom: 0;
}
header .topHeader .inputBox .form-control-box.noRadius {
	border-radius: 0;
	min-width: auto;
	padding: 5px 17px;
}
header .topHeader .inputBox input {
	border: none;
	outline: none;
	box-shadow: none;
	background: transparent;
	color: #fff;
	text-align: center;
    padding: 0;
    height: auto;
}
header .topHeader .inputBox button {
	background: transparent;
	border: none;
}

header .navigation {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
	float: right;
}
header .navigation li {
	display: inline-block;
}
header .navigation li a {
	padding: 3px 18px 3px 15px;
	color: #fff;
	position: relative;
}
header .navigation li a:hover, header .navigation li.current-menu-item a {
	color: #00afec;
}
header .navigation li a:after {
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	background: #00afec;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	margin: auto;
}
header .navigation li:last-child a:after {
	display: none;
}
header .navigation li:last-child a {
	padding-right: 0;
}
header .navigation li.menu-item-has-children {
	position: relative;
}
header .navigation li.menu-item-has-children a .icon {
	display: none;
}
header .navigation li.menu-item-has-children:hover .sub-menu {
	display: block;
}
header .navigation li.menu-item-has-children .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: rgba(0,0,0,0.6);
	margin: 0;
	padding: 15px;
	box-sizing: border-box;
	z-index: 100;
	display: none;
}
header .navigation li.menu-item-has-children .sub-menu li {
	width: 100%;
	padding: 0 18px;
}
header .navigation li.menu-item-has-children .sub-menu li a {
	padding: 5px 0;
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #488dc8;
	color: #fff;
}
header .navigation li.menu-item-has-children .sub-menu li.current_page_item a:after,header .navigation li.menu-item-has-children .sub-menu li:hover a:after {
	left: -20px;
	right: auto;
	display: block;
	color:#00afec;
}
header .navigation li.menu-item-has-children .sub-menu li.current_page_item a,header .navigation li.current-menu-parent a {
	color: #00afec;
}
header .navigation li.menu-item-has-children .sub-menu a:after {
	display: none;
}
/* Banner css */
.carousel.vertical .carousel-inner .item {
  -webkit-transition: 0.6s ease-in-out top;
     -moz-transition: 0.6s ease-in-out top;
      -ms-transition: 0.6s ease-in-out top;
       -o-transition: 0.6s ease-in-out top;
          transition: 0.6s ease-in-out top;
}
.carousel.vertical .carousel-indicators {
	top: 50%;
    right: 10px;
    width: 20px;
    margin: auto 0;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
}
.carousel.vertical .carousel-indicators li {
	border: none;
	background: #fff;
}
.carousel.vertical .carousel-indicators li.active {
	background: rgba(255,255,255,0.2);
}

.carousel.vertical .active {
  top: 0;
}

.carousel.vertical .next {
  top: 100%;
}

.carousel.vertical .prev {
  top: -100%;
}

.carousel.vertical .next.left,
.carousel.vertical .prev.right {
  top: 0;
}

.carousel.vertical .active.left {
  top: -100%;
}

.carousel.vertical .active.right {
  top: 100%;
}
.banner .tm_pb_slide {
	min-height: 450px;
}
.banner .bannerText {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    max-width: 54%;
    padding: 15px !important;
}
.banner .bannerText .bannerTitle {
	color: #fff;
	font-size: 40px;
	font-weight: 200;
	margin-bottom: 10px;
}
.banner .bannerText .bannerContent {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}
.banner .bannerText .btn {
	background: #7c4807;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 0px;
	margin-top: 60px;
	
}
.banner .bannerText .btn:hover {
	background: #5a3302;
}
.title {
	color: #488dc8;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	margin: 30px 0 20px;
}
.text {
	color: #6d6f71;
}
.text.w_70 {
	max-width: 70%;
	display: inline-block;
}
.box_3 {
	float: left;
	width: 100%;
	overflow: hidden;
	position: relative;
}
.box_3 img {
	transition: all 0.7s ease;
	width: 100%;
}
.box_3 .box_title {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 15px;
	transition: all 0.3s ease;
}
.box_3 .box_title h3 {
	margin: 20px 0 0 10px;
	text-align: left;
	color: #fff;
	font-weight: 700;
}
.box_3:hover img {
	transform: scale(1.2);
}
.box_3:hover .tm_pb_team_member_description{
	background: rgba(72,141,200,0.7)
}
.contactus {
	background: url('/web/20181013175928im_/https://pfapc.com/wp-content/themes/pfa/assets/images/contact_bg.png') no-repeat left center;
	padding: 30px 15px 15px;
	background-size: cover;
	position: relative;
}
.contactus .contactwithlink {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(91, 87, 165, 0.8);
	width: 6%;
}
.contactus .contactwithlink img {
	max-width: 30px;
}
.contactus label {
	color: #fff;
}

.form-control {
	border-radius: 0px;
	background: rgba(183,183,183,0.85);
	border-color: #b7c2d6;
	height:40px;
}
.btn-theme {
	background: #488dc8;
	color: #fff;
	font-weight: 600;
	border-radius: 0px;
	transition: all 0.3s ease;
	padding: 6px 20px;
}
.btn-theme:hover {
	background: #1b5b91;
	color: #fff;
}
.btn-yellow {
	background: #f0ce69;
	color: #000;
	font-weight: 600;
	border-radius: 0px;
	transition: all 0.3s ease;
	padding: 6px 20px;
}
.btn-yellow:hover {
	background: #dead1d;
}
footer .topfooter {
	background: url(/web/20181013175928im_/https://pfapc.com/wp-content/themes/pfa/assets/images/footer_bg.png) no-repeat left;
	min-height: 300px;
	padding: 30px 0;
	background-size: cover;
}
footer .topfooter .footTitle {
	color: rgba(255,255,255,0.47);
}
footer .topfooter .footAddress {
	float: left;
	margin-left: 10%;
	color: rgba(255,255,255,0.8);
	line-height: 26px;
}
footer .copyright {
	padding: 20px 0;
	background: #000;
	text-align: center;
}
footer .copyright ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
footer .copyright ul li {
	color: #fff;
	display: inline-block;
	padding: 0 10px;
	font-size: 12px;
}
footer .copyright ul li a {
	color: #fff;
}
@media screen and (max-width: 550px) {
	.box_3 {
		width: 100% !important;
	}
}
@media screen and (max-width: 767px) {
	.text.w_70 {
		max-width: 100%;
	}
	.banner .item img {
		min-height: 200px;
		width: 100%;
	}
	.banner .bannerText {
	    max-width: 90%;
	    right: 30px;
	}
	.banner .bannerText .bannerTitle {
		font-size: 20px;
	}
	.banner .bannerText .bannerContent {
		font-size: 15px;
	}
	.banner .bannerText .btn {
		margin-top: 10px;
	}
	.title {
		font-size: 20px;
	}
	.box_3 {
		width: 50%;
	}
	.box_3 .box_title h3 {
		font-size: 16px;
	}
}
@media screen and (min-width: 767px) and (max-width: 991px) {
	.banner .bannerText {
	    max-width: 50%;
	}
	.banner .bannerText .bannerTitle {
		font-size: 30px;
	}
	.banner .bannerText .bannerContent {
		font-size: 16px;
	}
	.banner .bannerText .btn {
		margin-top: 30px;
	}
	.box_3 .box_title h3 {
		font-size: 15px;
	}
}
@media screen and (max-width: 991px) {
	.wrapper {
		padding-top: 60px;
	}
	header.header {
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		z-index: 1000;
		padding: 6px 15px;
	}
	header .logo img {
		max-height: 48px;
	}
	header .topHeader {
		margin: 0;
	}
	header .menuIcon {
		height: 48px;
		width: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	header .menuIcon .line {
		width: 20px;
		height: 1px;
		background: #fff;
		display: inline-block;
		position: relative;
	}
	header .menuIcon .line:after {
		content: '';
		position: absolute;
		top: 5px;
		width: 20px;
		left: 0;
		height: 1px;
		background: #fff;
	}
	header .menuIcon .line:before {
		content: '';
		position: absolute;
		top: -5px;
		width: 20px;
		left: 0;
		height: 1px;
		background: #fff;
	}
	header .navigation {
		position: fixed;
		top: 60px;
		height: calc(100vh - 60px);
		overflow-y: auto;
		background: #000;
		left: 0;
		right: 0;
		z-index: 1000;
		border-top: 1px solid #fff;
		transition: all 0.3s ease;
		transform: translate3d(100%,0,0);
	}
	header .navigation.active  {
		transform: translate3d(0,0,0);
	}
	header .navigation li {
		width: 100%;
		padding: 10px;
	}
	header .navigation li a:after {
		display: none;
	}
	header .navigation li a {
		padding: 3px 18px 3px 8px;
	}
	header .navigation li.menu-item-has-children .sub-menu {
		position: static;
	}
	
}
@media screen and (min-width: 991px) {
	.col-md-offset-1 {
	    margin-left: 8.33333%;
	}
}
.tm-pb-controllers{
	top: 50%;
	right: 10px;
	width: 20px !important;
	margin: auto 0;
	left: auto !important;
	bottom: auto !important;
	transform: translateY(-50%);
	float:right;
}
.tm-pb-controllers a {
	border: none;
	background: #fff;
	margin: 5px 0 !important;
	display: block !important;
}
.tm-pb-controllers a.tm-pb-active-control {
	background: rgba(255,255,255,0.2);
}
#tm_builder_outer_content .tm_pb_module li {
    position: relative;
}
#tm_builder_outer_content .tm_pb_module li:before {
	content: '';
	position: absolute;
	left: -15px;
	top: 7px;
	bottom: 0;
	width: 6px;
	height: 6px;
	background: #488dc8;
}
#primary {
	overflow: hidden;
}
.listVertical {
	padding: 0;
	margin: 0;
	text-align: center !important;
}
.listVertical li {
    	position: relative;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 22px;
}
.listVertical li:before {
	content: '';
	position: absolute;
	left: -15px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 6px;
	height: 6px;
	background: #488dc8;
}
.listVertical li:first-child:before {
	display: none;
}
/*
     FILE ARCHIVED ON 17:59:28 Oct 13, 2018 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 15:07:18 Mar 21, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.555
  exclusion.robots: 0.02
  exclusion.robots.policy: 0.009
  esindex: 0.011
  cdx.remote: 39.815
  LoadShardBlock: 95.647 (3)
  PetaboxLoader3.datanode: 75.292 (4)
  PetaboxLoader3.resolve: 101.588 (2)
  load_resource: 102.003
*/